DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / ISupportRangeEditing<T> Interface / CanInsertRange Method
The index where the items would be inserted.
The items to be inserted.

In This Topic
    CanInsertRange Method (ISupportRangeEditing<T>)
    In This Topic
    Determines whether a new range of items can be inserted in the collection at the specified startingIndex.
    Syntax
    'Declaration
     
    Function CanInsertRange( _
       ByVal startingIndex As Integer, _
       ByVal items As IEnumerable(Of T) _
    ) As Boolean
    bool CanInsertRange( 
       int startingIndex,
       IEnumerable<T> items
    )

    Parameters

    startingIndex
    The index where the items would be inserted.
    items
    The items to be inserted.
    See Also